home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / UNIXTOOL / GNU / PERL / PERL5.ZIP / !Perl / README < prev   
Text File  |  1995-03-01  |  11KB  |  227 lines

  1.  
  2.                Perl Kit, Version 5.0
  3.  
  4.         Copyright (c) 1989,1990,1991,1992,1993,1994  Larry Wall
  5.                 All rights reserved.
  6.  
  7.     This program is free software; you can redistribute it and/or modify
  8.     it under the terms of either:
  9.     
  10.     a) the GNU General Public License as published by the Free
  11.     Software Foundation; either version 1, or (at your option) any
  12.     later version, or
  13.  
  14.     b) the "Artistic License" which comes with this Kit.
  15.  
  16.     This program is distributed in the hope that it will be useful,
  17.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See either
  19.     the GNU General Public License or the Artistic License for more details.
  20.  
  21.     You should have received a copy of the Artistic License with this
  22.     Kit, in the file named "Artistic".  If not, I'll be glad to provide one.
  23.  
  24.     You should also have received a copy of the GNU General Public License
  25.     along with this program; if not, write to the Free Software
  26.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  27.  
  28.     For those of you that choose to use the GNU General Public License,
  29.     my interpretation of the GNU General Public License is that no Perl
  30.     script falls under the terms of the GPL unless you explicitly put
  31.     said script under the terms of the GPL yourself.  Furthermore, any
  32.     object code linked with perl does not automatically fall under the
  33.     terms of the GPL, provided such object code only adds definitions
  34.     of subroutines and variables, and does not otherwise impair the
  35.     resulting interpreter from executing any standard Perl script.  I
  36.     consider linking in C subroutines in this manner to be the moral
  37.     equivalent of defining subroutines in the Perl language itself.  You
  38.     may sell such an object file as proprietary provided that you provide
  39.     or offer to provide the Perl source, as specified by the GNU General
  40.     Public License.  (This is merely an alternate way of specifying input
  41.     to the program.)  You may also sell a binary produced by the dumping of
  42.     a running Perl script that belongs to you, provided that you provide or
  43.     offer to provide the Perl source as specified by the GPL.  (The
  44.     fact that a Perl interpreter and your code are in the same binary file
  45.     is, in this case, a form of mere aggregation.)  This is my interpretation
  46.     of the GPL.  If you still have concerns or difficulties understanding
  47.     my intent, feel free to contact me.  Of course, the Artistic License
  48.     spells all this out for your protection, so you may prefer to use that.
  49.  
  50. --------------------------------------------------------------------------
  51.  
  52. Perl is a language that combines some of the features of C, sed, awk
  53. and shell.  See the manual page for more hype.  There are also two Nutshell
  54. Handbooks published by O'Reilly & Assoc.  See pod/perlbook.pod
  55. for more information.
  56.  
  57. Please read all the directions below before you proceed any further, and
  58. then follow them carefully.
  59.  
  60. After you have unpacked your kit, you should have all the files listed
  61. in MANIFEST.
  62.  
  63. Installation
  64.  
  65. 1)  Run Configure.  This will figure out various things about your
  66.     system.  Some things Configure will figure out for itself, other
  67.     things it will ask you about.  If the test scripts and programs
  68.     run ok, the defaults will usually be right.  It will then proceed to
  69.     make config.h, config.sh, and Makefile.  You may have to explicitly
  70.     say     sh Configure    to ensure that Configure is run under sh.
  71.     If you're a hotshot, run Configure -d to take all the defaults and
  72.     then edit config.sh to patch up any flaws and run Configure -S.
  73.  
  74.     Configure supports a number of useful options.  Run Configure -h 
  75.     to get a listing.  To compile with gcc, for example, you can run 
  76.     Configure -Dcc=gcc, or answer 'gcc' at the cc prompt.  If you
  77.     change compilers or make other significant changes, you should
  78.     probably _not_ re-use your old config.sh.
  79.     
  80.     By default, perl will be installed in /usr/local/{bin, lib, man}.
  81.     You can specify a different prefix for the default installation
  82.     directory, when Configure prompts you or by using something like
  83.     Configure -Dprefix=/whatever.
  84.  
  85.     You can also supply a file config.over to over-ride Configure's
  86.     guesses.  It will get loaded up at the very end, just before
  87.     config.sh is created.
  88.  
  89.     You might possibly have to trim # comments from the front of Configure
  90.     if your sh doesn't handle them, but all other # comments will be taken
  91.     care of.
  92.  
  93.     (If you don't have sh, you'll have to copy the sample file config.H to
  94.     config.h and edit the config.h to reflect your system's peculiarities.)
  95.  
  96. 2)  Glance through config.h to make sure system dependencies are correct.
  97.     Most of them should have been taken care of by running the Configure script.
  98.  
  99.     If you have any additional changes to make to the C definitions, they
  100.     can be done in cflags.SH.  For instance, to turn off the optimizer
  101.     on toke.c, find the line in the switch structure for toke.c and
  102.     put the command optimize='-g' before the ;;.  To change the C flags
  103.     for all the files, edit config.sh and change either $ccflags or $optimize.
  104.  
  105. 3)  make depend
  106.  
  107.     This will look for all the includes and modify Makefile accordingly.
  108.     Configure will offer to do this for you.
  109.  
  110. 4)  make
  111.  
  112.     This will attempt to make perl in the current directory.
  113.  
  114.     If you can't compile successfully, try adding a -DCRIPPLED_CC flag.
  115.     (Just because you get no errors doesn't mean it compiled right!)
  116.     This simplifies some complicated expressions for compilers that
  117.     get indigestion easily.  If that has no effect, try turning off
  118.     optimization.  If you have missing routines, you probably need to
  119.     add some library or other, or you need to undefine some feature that
  120.     Configure thought was there but is defective or incomplete.
  121.  
  122.     Some compilers will not compile or optimize the larger files without
  123.     some extra switches to use larger jump offsets or allocate larger
  124.     internal tables.  You can customize the switches for each file in
  125.     cflags.SH.  It's okay to insert rules for specific files into
  126.     Makefile.SH, since a default rule only takes effect in the
  127.     absence of a specific rule.
  128.  
  129.     Many of the following hints are now done automatically by Configure.
  130.     Some of the hints here were for Perl 4, and are probably obsolete.
  131.     They're left here for the moment just to give you some ideas for
  132.     what to try if you're having trouble.
  133.  
  134.     AIX/RT may need a -a switch and -DCRIPPLED_CC.
  135.     Ultrix 3.[01] on MIPS needs to undefine WAITPID--the system call is busted.
  136.     MIPS machines may need to undef d_volatile.
  137.     MIPS machines may need to turn off -O on some files.
  138.     Some MIPS machines may need to undefine CASTNEGFLOAT.
  139.     Genix may need to use libc rather than libc_s, or #undef VARARGS.
  140.     NCR Tower 32 (OS 2.01.01) may need -W2,-Sl,2000 and #undef MKDIR.
  141.     A/UX may appear to work with -O -B/usr/lib/big/ optimizer flags.
  142.     A/UX may need -lposix to find rewinddir.
  143.     A/UX may need -ZP -DPOSIX, and -g if big cc is used.
  144.     UTS may need one or more of -DCRIPPLED_CC, -K or -g, and undef LSTAT.
  145.     If you get syntax errors on '(', try -DCRIPPLED_CC.
  146.     Machines with half-implemented dbm routines will need to #undef I_ODBM 
  147.     SCO prior to 3.2.4 may be missing dbmclose().  An upgrade to 3.2.4
  148.     that includes libdbm.nfs (which includes dbmclose()) may be available.
  149.     If you get duplicates upon linking for malloc et al, say -DHIDEMYMALLOC.
  150.     If you get duplicate function definitions (a perl function has the
  151.     same name as another function on your system) try -DEMBED.
  152.     If you get varags problems with gcc, be sure that gcc is installed
  153.     correctly.  When using gcc, you should probably have i_stdarg='define'
  154.     and i_varags='undef' in config.sh.
  155.  
  156. 5)  make test
  157.  
  158.     This will run the regression tests on the perl you just made.
  159.     If it doesn't say "All tests successful" then something went wrong.
  160.     See the README in the t subdirectory.  Note that you can't run it
  161.     in background if this disables opening of /dev/tty.  If "make test"
  162.     bombs out, just cd to the t directory and run TEST by hand to see if
  163.     it makes any difference.  If individual tests bomb, you can run
  164.     them by hand, e.g., ./perl op/groups.t
  165.  
  166. 6)  make install
  167.  
  168.     This will put perl into a public directory (such as /usr/local/bin).
  169.     It will also try to put the man pages in a reasonable place.  It will not
  170.     nroff the man page, however.  You may need to be root to do this.  If
  171.     you are not root, you must own the directories in question and you should
  172.     ignore any messages about chown not working.
  173.  
  174.     make install will also install the following:
  175.     perl,
  176.         perl5.nnn    where nnn is the current release number.  This
  177.             will be a link to perl.
  178.     suidperl,
  179.         sperl5.nnn    If you requested setuid emulation.
  180.     a2p              awk-to-perl translator
  181.     cppstdin    This is used by perl -P, if your cc -E can't
  182.             read from stdin.
  183.     c2ph, pstruct    Scripts for handling C structures in header files.
  184.     s2p        sed-to-perl translator
  185.     find2perl    find-to-perl translator
  186.     h2xs        Converts C .h header files to Perl extensions.
  187.  
  188.     library files    in $privlib and $archlib specified to
  189.             Configure, usually under /usr/local/lib/perl5/.
  190.     man pages    in the location specified to Configure, usually
  191.             something like /usr/local/man/man1.
  192.  
  193.     Perl's *.h header files and the libperl.a library are also
  194.     installed under $archlib so that you may later build new
  195.     extensions even if the Perl source is no longer available.
  196.     
  197.     make install may also offer to install perl in a "standard" location.
  198.     
  199.     Most of the documentation in the pod/ directory is also available 
  200.     in HTML format.  Type
  201.     cd pod; make html; cd ..
  202.     to generate the html versions.
  203.  
  204. 7)  Read the manual entries before running perl.
  205.  
  206. 8)  IMPORTANT!  Help save the world!  Communicate any problems and suggested
  207.     patches to me, lwall@netlabs.com (Larry Wall), so we can
  208.     keep the world in sync.  If you have a problem, there's someone else
  209.     out there who either has had or will have the same problem.
  210.  
  211.     If possible, send in patches such that the patch program will apply them.
  212.     Context diffs are the best, then normal diffs.  Don't send ed scripts--
  213.     I've probably changed my copy since the version you have.  It's also
  214.     helpful if you send the output of "uname -a".
  215.  
  216.     Watch for perl patches in comp.lang.perl.  Patches will generally be
  217.     in a form usable by the patch program.  If you are just now bringing up
  218.     perl and aren't sure how many patches there are, write to me and I'll
  219.     send any you don't have.  Your current patch level is shown in patchlevel.h.
  220.  
  221.  
  222. Just a personal note:  I want you to know that I create nice things like this
  223. because it pleases the Author of my story.  If this bothers you, then your
  224. notion of Authorship needs some revision.  But you can use perl anyway. :-)
  225.  
  226.                             The author.
  227.